Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

stb_voxel_render-devel-0.89^20241002git31707d1-1.fc39 RPM for i686

From Fedora 39 updates for x86_64 / Packages / s

Name: stb_voxel_render-devel Distribution: Fedora Project
Version: 0.89^20241002git31707d1 Vendor: Fedora Project
Release: 1.fc39 Build date: Thu Oct 3 03:12:45 2024
Group: Unspecified Build host: buildvm-x86-27.iad2.fedoraproject.org
Size: 163850 Source RPM: stb-0^20241002git31707d1-1.fc39.src.rpm
Packager: Fedora Project
Url: https://github.com/nothings/stb
Summary: Helps render large-scale “voxel” worlds for games
This library helps render large-scale “voxel” worlds for games, in this case,
one with blocks that can have textures and that can also be a few shapes other
than cubes.

   Video introduction:
      http://www.youtube.com/watch?v=2vnTtiLrV1w

   Minecraft-viewer sample app (not very simple though):
      http://github.com/nothings/stb/tree/master/tests/caveview

It works by creating triangle meshes. The library includes

   - converter from dense 3D arrays of block info to vertex mesh
   - vertex & fragment shaders for the vertex mesh
   - assistance in setting up shader state

For portability, none of the library code actually accesses the 3D graphics
API. (At the moment, it’s not actually portable since the shaders are GLSL
only, but patches are welcome.)

You have to do all the caching and tracking of vertex buffers yourself.
However, you could also try making a game with a small enough world that it’s
fully loaded rather than streaming. Currently the preferred vertex format is 20
bytes per quad. There are designs to allow much more compact formats with a
slight reduction in shader features, but no roadmap for actually implementing
them.

Provides

Requires

License

MIT OR Unlicense

Changelog

* Wed Oct 02 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20241002git31707d1-1
  - stb_image_resize2 2.11
* Fri May 31 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20240531git013ac3b-1
  - stb_image 2.30
* Sat May 25 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20240525git449758b-1
  - stb_image_resize2 2.07
* Thu May 02 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20240213gitae721c5-6
  - Patch for GHSL-2023-171/CVE-2023-45681/CVE-2023-47212
* Thu May 02 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20240213gitae721c5-5
  - Fix a description to use American English orthography
* Thu May 02 2024 David Abdurachmanov <davidlt@rivosinc.com> - 0^20240213gitae721c5-2
  - Fix compile error on riscv64
* Tue Feb 13 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20240213gitae721c5-1
  - Update to 0^20240213gitae721c5
  - stb_image_resize2-devel is updated to 2.06
* Tue Feb 13 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20240208gitb7cf124-1
  - Update to 0^20240208gitb7cf124
  - stb_image-devel is updated to 2.29
  - stb_image_resize2-devel is updated to 2.05
* Wed Oct 25 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20231011gitbeebb24-12
  - stb_vorbis: fix GHSL-2023-165 / fix CVE-2023-45675
* Wed Oct 25 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20231011gitbeebb24-11
  - stb_image: fix GHSL-2023-151 / fix CVE-2023-45667
* Wed Oct 25 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20231011gitbeebb24-10
  - stb_image: fix GHSL-2023-150 / fix CVE-2023-45666
* Wed Oct 25 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20231011gitbeebb24-9
  - Document another bug, PR, and name (GHSL-2023-149) for CVE-2023-43898
* Wed Oct 25 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20231011gitbeebb24-8
  - stb_image: fix GHSL-2023-148 / fix CVE-2023-45664
* Wed Oct 25 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20231011gitbeebb24-7
  - stb_image: fix GHSL-2023-147 / fix CVE-2023-45663
* Wed Oct 25 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20231011gitbeebb24-6
  - stb_image: fix GHSL-2023-146 / fix CVE-2023-45662
* Wed Oct 25 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20231011gitbeebb24-5
  - stb_image: fix GHSL-2023-145 / fix CVE-2023-45661
* Wed Oct 25 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20231011gitbeebb24-4
  - Document that 1454.patch fixes CVE-2023-43898
* Wed Oct 25 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20231011gitbeebb24-3
  - Backport a PR fixing undefined behavior in stb_image_resize2
* Wed Oct 25 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20231011gitbeebb24-2
  - Backport three PR’s fixing undefined behavior in stb_image
* Wed Oct 25 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20231011gitbeebb24-1
  - Update to 0^beebb24git20231011 (minor C99 fixes)
* Tue Oct 10 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20231009gitc4bbb6e-2
  - Fedora, EPEL9+: drop the initial “0.” from the Release
* Tue Oct 10 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20231009gitc4bbb6e-0.1
  - Update to 0^20231009gitc4bbb6e
  - A new stb_image_resize2 library is introduced
  - Upstream has deprecated stb_image_resize, but we still package it
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0^20230129git5736b15-0.7
  - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
* Sun Jun 18 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20230129git5736b15-0.6
  - Use new (rpm 4.17.1+) bcond style
* Sat Jun 03 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20230129git5736b15-0.5
  - Remove explicit %set_build_flags, not needed since F36
* Sat Feb 25 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20230129git5736b15-0.2
  - Fix null pointer dereference in stb_image
* Mon Jan 30 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20230129git5736b15-0.1
  - Update to 5736b1 (version history and README updates)
* Sun Jan 29 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20230129git6199bf7-0.1
  - Update to 6199bf7 (stb_image 2.28)
  - Security-related patches for stb_image have been merged upstream, and
    there are other bugfixes.
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0^20220908git8b5f1f3-0.5
  - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
* Wed Nov 30 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 0^20220908git8b5f1f3-0.4
  - Patch in a candidate fix for ossfuzz issue 24232
  - Improves handling of certain invalid PNGs by stb_image

Files

/usr/include/stb
/usr/include/stb/stb_voxel_render.h
/usr/include/stb_voxel_render.h
/usr/share/licenses/stb_voxel_render-devel
/usr/share/licenses/stb_voxel_render-devel/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Wed Jun 4 22:26:26 2025